home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / uuid.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  21KB  |  613 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. """UUID objects (universally unique identifiers) according to RFC 4122.
  5.  
  6. This module provides immutable UUID objects (class UUID) and the functions
  7. uuid1(), uuid3(), uuid4(), uuid5() for generating version 1, 3, 4, and 5
  8. UUIDs as specified in RFC 4122.
  9.  
  10. If all you want is a unique ID, you should probably call uuid1() or uuid4().
  11. Note that uuid1() may compromise privacy since it creates a UUID containing
  12. the computer's network address.  uuid4() creates a random UUID.
  13.  
  14. Typical usage:
  15.  
  16.     >>> import uuid
  17.  
  18.     # make a UUID based on the host ID and current time
  19.     >>> uuid.uuid1()
  20.     UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')
  21.  
  22.     # make a UUID using an MD5 hash of a namespace UUID and a name
  23.     >>> uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org')
  24.     UUID('6fa459ea-ee8a-3ca4-894e-db77e160355e')
  25.  
  26.     # make a random UUID
  27.     >>> uuid.uuid4()
  28.     UUID('16fd2706-8baf-433b-82eb-8c7fada847da')
  29.  
  30.     # make a UUID using a SHA-1 hash of a namespace UUID and a name
  31.     >>> uuid.uuid5(uuid.NAMESPACE_DNS, 'python.org')
  32.     UUID('886313e1-3b8a-5372-9b90-0c9aee199e5d')
  33.  
  34.     # make a UUID from a string of hex digits (braces and hyphens ignored)
  35.     >>> x = uuid.UUID('{00010203-0405-0607-0809-0a0b0c0d0e0f}')
  36.  
  37.     # convert a UUID to a string of hex digits in standard form
  38.     >>> str(x)
  39.     '00010203-0405-0607-0809-0a0b0c0d0e0f'
  40.  
  41.     # get the raw 16 bytes of the UUID
  42.     >>> x.bytes
  43.     '\\x00\\x01\\x02\\x03\\x04\\x05\\x06\\x07\\x08\\t\\n\\x0b\\x0c\\r\\x0e\\x0f'
  44.  
  45.     # make a UUID from a 16-byte string
  46.     >>> uuid.UUID(bytes=x.bytes)
  47.     UUID('00010203-0405-0607-0809-0a0b0c0d0e0f')
  48. """
  49. __author__ = 'Ka-Ping Yee <ping@zesty.ca>'
  50. (RESERVED_NCS, RFC_4122, RESERVED_MICROSOFT, RESERVED_FUTURE) = [
  51.     'reserved for NCS compatibility',
  52.     'specified in RFC 4122',
  53.     'reserved for Microsoft compatibility',
  54.     'reserved for future definition']
  55.  
  56. class UUID(object):
  57.     """Instances of the UUID class represent UUIDs as specified in RFC 4122.
  58.     UUID objects are immutable, hashable, and usable as dictionary keys.
  59.     Converting a UUID to a string with str() yields something in the form
  60.     '12345678-1234-1234-1234-123456789abc'.  The UUID constructor accepts
  61.     five possible forms: a similar string of hexadecimal digits, or a tuple
  62.     of six integer fields (with 32-bit, 16-bit, 16-bit, 8-bit, 8-bit, and
  63.     48-bit values respectively) as an argument named 'fields', or a string
  64.     of 16 bytes (with all the integer fields in big-endian order) as an
  65.     argument named 'bytes', or a string of 16 bytes (with the first three
  66.     fields in little-endian order) as an argument named 'bytes_le', or a
  67.     single 128-bit integer as an argument named 'int'.
  68.  
  69.     UUIDs have these read-only attributes:
  70.  
  71.         bytes       the UUID as a 16-byte string (containing the six
  72.                     integer fields in big-endian byte order)
  73.  
  74.         bytes_le    the UUID as a 16-byte string (with time_low, time_mid,
  75.                     and time_hi_version in little-endian byte order)
  76.  
  77.         fields      a tuple of the six integer fields of the UUID,
  78.                     which are also available as six individual attributes
  79.                     and two derived attributes:
  80.  
  81.             time_low                the first 32 bits of the UUID
  82.             time_mid                the next 16 bits of the UUID
  83.             time_hi_version         the next 16 bits of the UUID
  84.             clock_seq_hi_variant    the next 8 bits of the UUID
  85.             clock_seq_low           the next 8 bits of the UUID
  86.             node                    the last 48 bits of the UUID
  87.  
  88.             time                    the 60-bit timestamp
  89.             clock_seq               the 14-bit sequence number
  90.  
  91.         hex         the UUID as a 32-character hexadecimal string
  92.  
  93.         int         the UUID as a 128-bit integer
  94.  
  95.         urn         the UUID as a URN as specified in RFC 4122
  96.  
  97.         variant     the UUID variant (one of the constants RESERVED_NCS,
  98.                     RFC_4122, RESERVED_MICROSOFT, or RESERVED_FUTURE)
  99.  
  100.         version     the UUID version number (1 through 5, meaningful only
  101.                     when the variant is RFC_4122)
  102.     """
  103.     
  104.     def __init__(self, hex = None, bytes = None, bytes_le = None, fields = None, int = None, version = None):
  105.         """Create a UUID from either a string of 32 hexadecimal digits,
  106.         a string of 16 bytes as the 'bytes' argument, a string of 16 bytes
  107.         in little-endian order as the 'bytes_le' argument, a tuple of six
  108.         integers (32-bit time_low, 16-bit time_mid, 16-bit time_hi_version,
  109.         8-bit clock_seq_hi_variant, 8-bit clock_seq_low, 48-bit node) as
  110.         the 'fields' argument, or a single 128-bit integer as the 'int'
  111.         argument.  When a string of hex digits is given, curly braces,
  112.         hyphens, and a URN prefix are all optional.  For example, these
  113.         expressions all yield the same UUID:
  114.  
  115.         UUID('{12345678-1234-5678-1234-567812345678}')
  116.         UUID('12345678123456781234567812345678')
  117.         UUID('urn:uuid:12345678-1234-5678-1234-567812345678')
  118.         UUID(bytes='\\x12\\x34\\x56\\x78'*4)
  119.         UUID(bytes_le='\\x78\\x56\\x34\\x12\\x34\\x12\\x78\\x56' +
  120.                       '\\x12\\x34\\x56\\x78\\x12\\x34\\x56\\x78')
  121.         UUID(fields=(0x12345678, 0x1234, 0x5678, 0x12, 0x34, 0x567812345678))
  122.         UUID(int=0x12345678123456781234567812345678)
  123.  
  124.         Exactly one of 'hex', 'bytes', 'bytes_le', 'fields', or 'int' must
  125.         be given.  The 'version' argument is optional; if given, the resulting
  126.         UUID will have its variant and version set according to RFC 4122,
  127.         overriding the given 'hex', 'bytes', 'bytes_le', 'fields', or 'int'.
  128.         """
  129.         if [
  130.             hex,
  131.             bytes,
  132.             bytes_le,
  133.             fields,
  134.             int].count(None) != 4:
  135.             raise TypeError('need one of hex, bytes, bytes_le, fields, or int')
  136.         
  137.         if hex is not None:
  138.             hex = hex.replace('urn:', '').replace('uuid:', '')
  139.             hex = hex.strip('{}').replace('-', '')
  140.             if len(hex) != 32:
  141.                 raise ValueError('badly formed hexadecimal UUID string')
  142.             
  143.             int = long(hex, 16)
  144.         
  145.         if bytes_le is not None:
  146.             if len(bytes_le) != 16:
  147.                 raise ValueError('bytes_le is not a 16-char string')
  148.             
  149.             bytes = bytes_le[3] + bytes_le[2] + bytes_le[1] + bytes_le[0] + bytes_le[5] + bytes_le[4] + bytes_le[7] + bytes_le[6] + bytes_le[8:]
  150.         
  151.         if bytes is not None:
  152.             if len(bytes) != 16:
  153.                 raise ValueError('bytes is not a 16-char string')
  154.             
  155.             int = long('%02x' * 16 % tuple(map(ord, bytes)), 16)
  156.         
  157.         if fields is not None:
  158.             if len(fields) != 6:
  159.                 raise ValueError('fields is not a 6-tuple')
  160.             
  161.             (time_low, time_mid, time_hi_version, clock_seq_hi_variant, clock_seq_low, node) = fields
  162.             if time_low <= time_low:
  163.                 pass
  164.             elif not time_low < 0x100000000L:
  165.                 raise ValueError('field 1 out of range (need a 32-bit value)')
  166.             
  167.             if time_mid <= time_mid:
  168.                 pass
  169.             elif not time_mid < 0x10000L:
  170.                 raise ValueError('field 2 out of range (need a 16-bit value)')
  171.             
  172.             if time_hi_version <= time_hi_version:
  173.                 pass
  174.             elif not time_hi_version < 0x10000L:
  175.                 raise ValueError('field 3 out of range (need a 16-bit value)')
  176.             
  177.             if clock_seq_hi_variant <= clock_seq_hi_variant:
  178.                 pass
  179.             elif not clock_seq_hi_variant < 0x100L:
  180.                 raise ValueError('field 4 out of range (need an 8-bit value)')
  181.             
  182.             if clock_seq_low <= clock_seq_low:
  183.                 pass
  184.             elif not clock_seq_low < 0x100L:
  185.                 raise ValueError('field 5 out of range (need an 8-bit value)')
  186.             
  187.             if node <= node:
  188.                 pass
  189.             elif not node < 0x1000000000000L:
  190.                 raise ValueError('field 6 out of range (need a 48-bit value)')
  191.             
  192.             clock_seq = clock_seq_hi_variant << 0x8L | clock_seq_low
  193.             int = time_low << 0x60L | time_mid << 0x50L | time_hi_version << 0x40L | clock_seq << 0x30L | node
  194.         
  195.         if int is not None:
  196.             if int <= int:
  197.                 pass
  198.             elif not int < 0x100000000000000000000000000000000L:
  199.                 raise ValueError('int is out of range (need a 128-bit value)')
  200.             
  201.         
  202.         if version is not None:
  203.             if version <= version:
  204.                 pass
  205.             elif not version <= 5:
  206.                 raise ValueError('illegal version number')
  207.             
  208.             int &= -0xC000000000000001L
  209.             int |= 0x8000000000000000L
  210.             int &= -0xF0000000000000000001L
  211.             int |= version << 0x4CL
  212.         
  213.         self.__dict__['int'] = int
  214.  
  215.     
  216.     def __cmp__(self, other):
  217.         if isinstance(other, UUID):
  218.             return cmp(self.int, other.int)
  219.         
  220.         return NotImplemented
  221.  
  222.     
  223.     def __hash__(self):
  224.         return hash(self.int)
  225.  
  226.     
  227.     def __int__(self):
  228.         return self.int
  229.  
  230.     
  231.     def __repr__(self):
  232.         return 'UUID(%r)' % str(self)
  233.  
  234.     
  235.     def __setattr__(self, name, value):
  236.         raise TypeError('UUID objects are immutable')
  237.  
  238.     
  239.     def __str__(self):
  240.         hex = '%032x' % self.int
  241.         return '%s-%s-%s-%s-%s' % (hex[:8], hex[8:12], hex[12:16], hex[16:20], hex[20:])
  242.  
  243.     
  244.     def get_bytes(self):
  245.         bytes = ''
  246.         for shift in range(0, 128, 8):
  247.             bytes = chr(self.int >> shift & 255) + bytes
  248.         
  249.         return bytes
  250.  
  251.     bytes = property(get_bytes)
  252.     
  253.     def get_bytes_le(self):
  254.         bytes = self.bytes
  255.         return bytes[3] + bytes[2] + bytes[1] + bytes[0] + bytes[5] + bytes[4] + bytes[7] + bytes[6] + bytes[8:]
  256.  
  257.     bytes_le = property(get_bytes_le)
  258.     
  259.     def get_fields(self):
  260.         return (self.time_low, self.time_mid, self.time_hi_version, self.clock_seq_hi_variant, self.clock_seq_low, self.node)
  261.  
  262.     fields = property(get_fields)
  263.     
  264.     def get_time_low(self):
  265.         return self.int >> 0x60L
  266.  
  267.     time_low = property(get_time_low)
  268.     
  269.     def get_time_mid(self):
  270.         return self.int >> 0x50L & 65535
  271.  
  272.     time_mid = property(get_time_mid)
  273.     
  274.     def get_time_hi_version(self):
  275.         return self.int >> 0x40L & 65535
  276.  
  277.     time_hi_version = property(get_time_hi_version)
  278.     
  279.     def get_clock_seq_hi_variant(self):
  280.         return self.int >> 0x38L & 255
  281.  
  282.     clock_seq_hi_variant = property(get_clock_seq_hi_variant)
  283.     
  284.     def get_clock_seq_low(self):
  285.         return self.int >> 0x30L & 255
  286.  
  287.     clock_seq_low = property(get_clock_seq_low)
  288.     
  289.     def get_time(self):
  290.         return (self.time_hi_version & 0xFFFL) << 0x30L | self.time_mid << 0x20L | self.time_low
  291.  
  292.     time = property(get_time)
  293.     
  294.     def get_clock_seq(self):
  295.         return (self.clock_seq_hi_variant & 0x3FL) << 0x8L | self.clock_seq_low
  296.  
  297.     clock_seq = property(get_clock_seq)
  298.     
  299.     def get_node(self):
  300.         return self.int & 0xFFFFFFFFFFFFL
  301.  
  302.     node = property(get_node)
  303.     
  304.     def get_hex(self):
  305.         return '%032x' % self.int
  306.  
  307.     hex = property(get_hex)
  308.     
  309.     def get_urn(self):
  310.         return 'urn:uuid:' + str(self)
  311.  
  312.     urn = property(get_urn)
  313.     
  314.     def get_variant(self):
  315.         if not self.int & 0x8000000000000000L:
  316.             return RESERVED_NCS
  317.         elif not self.int & 0x4000000000000000L:
  318.             return RFC_4122
  319.         elif not self.int & 0x2000000000000000L:
  320.             return RESERVED_MICROSOFT
  321.         else:
  322.             return RESERVED_FUTURE
  323.  
  324.     variant = property(get_variant)
  325.     
  326.     def get_version(self):
  327.         if self.variant == RFC_4122:
  328.             return int(self.int >> 0x4CL & 15)
  329.         
  330.  
  331.     version = property(get_version)
  332.  
  333.  
  334. def _find_mac(command, args, hw_identifiers, get_index):
  335.     import os as os
  336.     for dir in [
  337.         '',
  338.         '/sbin/',
  339.         '/usr/sbin']:
  340.         executable = os.path.join(dir, command)
  341.         if not os.path.exists(executable):
  342.             continue
  343.         
  344.         
  345.         try:
  346.             cmd = 'LC_ALL=C %s %s 2>/dev/null' % (executable, args)
  347.             pipe = os.popen(cmd)
  348.         except IOError:
  349.             continue
  350.  
  351.         for line in pipe:
  352.             words = line.lower().split()
  353.             for i in range(len(words)):
  354.                 if words[i] in hw_identifiers:
  355.                     return int(words[get_index(i)].replace(':', ''), 16)
  356.                     continue
  357.             
  358.         
  359.     
  360.  
  361.  
  362. def _ifconfig_getnode():
  363.     '''Get the hardware address on Unix by running ifconfig.'''
  364.     for args in ('', '-a', '-av'):
  365.         mac = _find_mac('ifconfig', args, [
  366.             'hwaddr',
  367.             'ether'], (lambda i: i + 1))
  368.         if mac:
  369.             return mac
  370.             continue
  371.     
  372.     import socket as socket
  373.     ip_addr = socket.gethostbyname(socket.gethostname())
  374.     mac = _find_mac('arp', '-an', [
  375.         ip_addr], (lambda i: -1))
  376.     if mac:
  377.         return mac
  378.     
  379.     mac = _find_mac('lanscan', '-ai', [
  380.         'lan0'], (lambda i: 0))
  381.     if mac:
  382.         return mac
  383.     
  384.  
  385.  
  386. def _ipconfig_getnode():
  387.     '''Get the hardware address on Windows by running ipconfig.exe.'''
  388.     import os
  389.     import re as re
  390.     dirs = [
  391.         '',
  392.         'c:\\windows\\system32',
  393.         'c:\\winnt\\system32']
  394.     
  395.     try:
  396.         import ctypes as ctypes
  397.         buffer = ctypes.create_string_buffer(300)
  398.         ctypes.windll.kernel32.GetSystemDirectoryA(buffer, 300)
  399.         dirs.insert(0, buffer.value.decode('mbcs'))
  400.     except:
  401.         pass
  402.  
  403.     for dir in dirs:
  404.         
  405.         try:
  406.             pipe = os.popen(os.path.join(dir, 'ipconfig') + ' /all')
  407.         except IOError:
  408.             continue
  409.  
  410.         for line in pipe:
  411.             value = line.split(':')[-1].strip().lower()
  412.             if re.match('([0-9a-f][0-9a-f]-){5}[0-9a-f][0-9a-f]', value):
  413.                 return int(value.replace('-', ''), 16)
  414.                 continue
  415.         
  416.     
  417.  
  418.  
  419. def _netbios_getnode():
  420.     '''Get the hardware address on Windows using NetBIOS calls.
  421.     See http://support.microsoft.com/kb/118623 for details.'''
  422.     import win32wnet as win32wnet
  423.     import netbios as netbios
  424.     ncb = netbios.NCB()
  425.     ncb.Command = netbios.NCBENUM
  426.     ncb.Buffer = adapters = netbios.LANA_ENUM()
  427.     adapters._pack()
  428.     if win32wnet.Netbios(ncb) != 0:
  429.         return None
  430.     
  431.     adapters._unpack()
  432.     for i in range(adapters.length):
  433.         ncb.Reset()
  434.         ncb.Command = netbios.NCBRESET
  435.         ncb.Lana_num = ord(adapters.lana[i])
  436.         if win32wnet.Netbios(ncb) != 0:
  437.             continue
  438.         
  439.         ncb.Reset()
  440.         ncb.Command = netbios.NCBASTAT
  441.         ncb.Lana_num = ord(adapters.lana[i])
  442.         ncb.Callname = '*'.ljust(16)
  443.         ncb.Buffer = status = netbios.ADAPTER_STATUS()
  444.         if win32wnet.Netbios(ncb) != 0:
  445.             continue
  446.         
  447.         status._unpack()
  448.         bytes = map(ord, status.adapter_address)
  449.         return (bytes[0] << 0x28L) + (bytes[1] << 0x20L) + (bytes[2] << 0x18L) + (bytes[3] << 0x10L) + (bytes[4] << 0x8L) + bytes[5]
  450.     
  451.  
  452. _uuid_generate_random = None
  453. _uuid_generate_time = None
  454. _UuidCreate = None
  455.  
  456. try:
  457.     import ctypes
  458.     import ctypes.util as ctypes
  459.     _buffer = ctypes.create_string_buffer(16)
  460.     for libname in [
  461.         'uuid',
  462.         'c']:
  463.         
  464.         try:
  465.             lib = ctypes.CDLL(ctypes.util.find_library(libname))
  466.         except:
  467.             continue
  468.  
  469.         if hasattr(lib, 'uuid_generate_random'):
  470.             _uuid_generate_random = lib.uuid_generate_random
  471.         
  472.         if hasattr(lib, 'uuid_generate_time'):
  473.             _uuid_generate_time = lib.uuid_generate_time
  474.             continue
  475.     
  476.     
  477.     try:
  478.         lib = ctypes.windll.rpcrt4
  479.     except:
  480.         lib = None
  481.  
  482.     _UuidCreate = getattr(lib, 'UuidCreateSequential', getattr(lib, 'UuidCreate', None))
  483. except:
  484.     pass
  485.  
  486.  
  487. def _unixdll_getnode():
  488.     '''Get the hardware address on Unix using ctypes.'''
  489.     _uuid_generate_time(_buffer)
  490.     return UUID(bytes = _buffer.raw).node
  491.  
  492.  
  493. def _windll_getnode():
  494.     '''Get the hardware address on Windows using ctypes.'''
  495.     if _UuidCreate(_buffer) == 0:
  496.         return UUID(bytes = _buffer.raw).node
  497.     
  498.  
  499.  
  500. def _random_getnode():
  501.     '''Get a random node ID, with eighth bit set as suggested by RFC 4122.'''
  502.     import random as random
  503.     return random.randrange(0, 0x1000000000000L) | 0x10000000000L
  504.  
  505. _node = None
  506.  
  507. def getnode():
  508.     '''Get the hardware address as a 48-bit positive integer.
  509.  
  510.     The first time this runs, it may launch a separate program, which could
  511.     be quite slow.  If all attempts to obtain the hardware address fail, we
  512.     choose a random 48-bit number with its eighth bit set to 1 as recommended
  513.     in RFC 4122.
  514.     '''
  515.     global _node
  516.     if _node is not None:
  517.         return _node
  518.     
  519.     import sys as sys
  520.     if sys.platform == 'win32':
  521.         getters = [
  522.             _windll_getnode,
  523.             _netbios_getnode,
  524.             _ipconfig_getnode]
  525.     else:
  526.         getters = [
  527.             _unixdll_getnode,
  528.             _ifconfig_getnode]
  529.     for getter in getters + [
  530.         _random_getnode]:
  531.         
  532.         try:
  533.             _node = getter()
  534.         except:
  535.             continue
  536.  
  537.         if _node is not None:
  538.             return _node
  539.             continue
  540.     
  541.  
  542. _last_timestamp = None
  543.  
  544. def uuid1(node = None, clock_seq = None):
  545.     """Generate a UUID from a host ID, sequence number, and the current time.
  546.     If 'node' is not given, getnode() is used to obtain the hardware
  547.     address.  If 'clock_seq' is given, it is used as the sequence number;
  548.     otherwise a random 14-bit sequence number is chosen."""
  549.     global _last_timestamp
  550.     if _uuid_generate_time:
  551.         if clock_seq is clock_seq:
  552.             pass
  553.         elif clock_seq is None:
  554.             _uuid_generate_time(_buffer)
  555.             return UUID(bytes = _buffer.raw)
  556.         
  557.     import time
  558.     nanoseconds = int(time.time() * 1e+09)
  559.     timestamp = int(nanoseconds / 100) + 0x1B21DD213814000L
  560.     if timestamp <= _last_timestamp:
  561.         timestamp = _last_timestamp + 1
  562.     
  563.     _last_timestamp = timestamp
  564.     if clock_seq is None:
  565.         import random
  566.         clock_seq = random.randrange(0x4000L)
  567.     
  568.     time_low = timestamp & 0xFFFFFFFFL
  569.     time_mid = timestamp >> 0x20L & 0xFFFFL
  570.     time_hi_version = timestamp >> 0x30L & 0xFFFL
  571.     clock_seq_low = clock_seq & 0xFFL
  572.     clock_seq_hi_variant = clock_seq >> 0x8L & 0x3FL
  573.     if node is None:
  574.         node = getnode()
  575.     
  576.     return UUID(fields = (time_low, time_mid, time_hi_version, clock_seq_hi_variant, clock_seq_low, node), version = 1)
  577.  
  578.  
  579. def uuid3(namespace, name):
  580.     '''Generate a UUID from the MD5 hash of a namespace UUID and a name.'''
  581.     import md5 as md5
  582.     hash = md5.md5(namespace.bytes + name).digest()
  583.     return UUID(bytes = hash[:16], version = 3)
  584.  
  585.  
  586. def uuid4():
  587.     '''Generate a random UUID.'''
  588.     if _uuid_generate_random:
  589.         _uuid_generate_random(_buffer)
  590.         return UUID(bytes = _buffer.raw)
  591.     
  592.     
  593.     try:
  594.         import os
  595.         return UUID(bytes = os.urandom(16), version = 4)
  596.     except:
  597.         import random
  598.         bytes = [ chr(random.randrange(256)) for i in range(16) ]
  599.         return UUID(bytes = bytes, version = 4)
  600.  
  601.  
  602.  
  603. def uuid5(namespace, name):
  604.     '''Generate a UUID from the SHA-1 hash of a namespace UUID and a name.'''
  605.     import sha as sha
  606.     hash = sha.sha(namespace.bytes + name).digest()
  607.     return UUID(bytes = hash[:16], version = 5)
  608.  
  609. NAMESPACE_DNS = UUID('6ba7b810-9dad-11d1-80b4-00c04fd430c8')
  610. NAMESPACE_URL = UUID('6ba7b811-9dad-11d1-80b4-00c04fd430c8')
  611. NAMESPACE_OID = UUID('6ba7b812-9dad-11d1-80b4-00c04fd430c8')
  612. NAMESPACE_X500 = UUID('6ba7b814-9dad-11d1-80b4-00c04fd430c8')
  613.